home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- Integer INTEGER001
- String STRING001
- String STRING002
-
- ;------------------------------------------------------------------------------
-
- PrintLn "@CLS@@X08 .---------------------------------------------------------------------------."
- PrintLn " @X08| @X03Loosers that have uploaded less then 500K @X08 |"
- PrintLn "<---------------------------.----------------------------.----------.--------->"
- PrintLn "| @X04Users Name@X08 | @X04User Location@X08 | @X04Uploads @X08| @X04Files@X08 |"
- PrintLn "<---------------------------#----------------------------#----------#--------->"
- INTEGER001 = 1
- GetAltUser INTEGER001
- While (U_RecNum(U_Name()) == INTEGER001) Do
- If (U_Bul() < 500000) Then
- STRING001 = String(U_Bul())
- STRING002 = String(U_Ful())
- If (Len(STRING001) == 6) STRING001 = Mid(STRING001, 1, 3) + "," + Mid(STRING001, 4, 3)
- If (Len(STRING001) == 5) STRING001 = Mid(STRING001, 1, 2) + "," + Mid(STRING001, 3, 3)
- If (Len(STRING001) == 4) STRING001 = Mid(STRING001, 1, 1) + "," + Mid(STRING001, 2, 3)
- PrintLn "@X08 | @X05" + U_Name() + "@X08@POS:29@| @X02" + U_City + "@POS:58@@X08| @X06" + Space(8 - Len(STRING001)) + STRING001 + "@POS:69@@X08|@X01" + Space(7 - Len(STRING002)) + STRING002 + "@POS:78@@X08|"
- Endif
- Inc INTEGER001
- GetAltUser INTEGER001
- EndWhile
- PrintLn "@X08<---------------------------^----------------------------^----------^--------->"
- PrintLn "| @X07Loosers V1.0 is a Toxic Krystal Production Coded by: THe BLaCK aSSaSSiN @X08|"
- PrintLn "<----------------------------------------------------------------------------->"
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 3 Goto
- ; 6 Let
- ; 9 PrintLn
- ; 5 If
- ; 1 Inc
- ; 2 GetAltUser
- ;
- ;
- ; ■ Functions used :
- ;
- ; 16 +
- ; 2 -
- ; 4 ==
- ; 1 <
- ; 2 !
- ; 5 Len(
- ; 6 Mid()
- ; 2 Space()
- ; 2 U_Name()
- ; 1 U_Ful()
- ; 2 U_Bul()
- ; 2 String()
- ; 1 U_RecNum()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : R
- ;
- ; R - Read user ■ 5
- ; User records are read, this may signify that someone wants to get
- ; various informations about a user (for example his password), but
- ; this may also be normal for a program accessing user records (for
- ; example a User Editor)
- ; ■ Search for : GETALTUSER
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 0 For/Next
- ; 1 While/EndWhile
- ; 1 If/Then or If/Then/Else
- ; 0 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-